Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 404 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Voice Recorder🎙</title>
  <link rel="stylesheet" href="./style.css">

</head>
<body>

<div class="container">
	<h1>Voice Recorder🎙</h1>
	
	<audio id="recorder" muted hidden></audio>
	
		<button id="start">Record</button>
		<button id="stop">Stop Recording</button>
	
	<h3>Saved Recording</h3>
	<audio id="player" controls></audio>
</div>

  <script  src="./script.js"></script>

</body>
</html>